home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 10868 / 10868.xpi / chrome / sync.jar / content / load-weave.js < prev    next >
Text File  |  2010-02-02  |  419b  |  13 lines

  1. // = load-weave =
  2.  
  3. // These are the only ones we *really* need in this file.
  4. // We import them into the global namespace because the symbols they export
  5. // are carefully named to minimize the risk of conflicts.
  6.  
  7. // Lazily load the service (and all its files) only when it's needed
  8. __defineGetter__("Weave", function() {
  9.   delete this.Weave;
  10.   Components.utils.import("resource://weave/service.js");
  11.   return Weave;
  12. });
  13.